fmt.readRune.peekRune (field)
11 uses
fmt (current package)
scan.go#L309: peekRune rune // if >=0 next rune; when <0 is ^(previous Rune)
scan.go#L331: if r.peekRune >= 0 {
scan.go#L332: rr = r.peekRune
scan.go#L333: r.peekRune = ^r.peekRune
scan.go#L345: r.peekRune = ^rr
scan.go#L365: r.peekRune = ^rr
scan.go#L370: if r.peekRune >= 0 {
scan.go#L374: r.peekRune = ^r.peekRune
scan.go#L388: s.rs = &readRune{reader: r, peekRune: -1}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |